home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / tools / dfÜ / bbs / tronbbs / tron / menus / editor.src < prev    next >
Text File  |  1996-07-16  |  610b  |  44 lines

  1.  
  2. ; Select an editor to write (echo)mail
  3.  
  4.  
  5. Menu "Editor.menu"
  6.  
  7. flags  hotkeyable
  8. level  0 - 255 , "Editor.Ansi"
  9. prompt 0 , 0 - 255 , "|Editor Menu : "
  10. prompt 1 , 0 - 255 , "|Editor Menu : "
  11.  
  12. BEGIN     ; Start the command definitions
  13.  
  14.  
  15. Cmd "0"
  16.    ChangeEditor "0"                     ;select line editor
  17.    PreviousMenu
  18. EndCmd
  19.  
  20. Cmd "1"
  21.    ChangeEditor "1"                     ;select line editor OR local editor
  22.    PreviousMenu
  23. EndCmd
  24.  
  25. Cmd "2"
  26.    ChangeEditor "2"                     ;select 'tron:doors/fsed/fsed2'
  27.    PreviousMenu
  28. EndCmd
  29.  
  30.  
  31.  
  32. Cmd ""
  33.    PreviousMenu
  34. EndCmd
  35.  
  36.  
  37. Cmd "Q"
  38.    PreviousMenu
  39. EndCmd
  40.  
  41.  
  42. END
  43.  
  44.